home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / BitShifting / BitWiseTest.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  3.1 KB  |  78 lines

  1. program BitWiseTest;
  2.  
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  8.  
  9. {$R 'WinForm.TWinForm.resources' 'WinForm.resx'}
  10.  
  11. uses
  12.   System.Reflection,
  13.   System.Runtime.CompilerServices,
  14.   System.Windows.Forms,
  15.   WinForm in 'WinForm.pas' {WinForm.TWinForm: System.Windows.Forms.Form},
  16.   bitwiseclass in 'bitwiseclass.pas';
  17.  
  18. //
  19. // General Information about an assembly is controlled through the following
  20. // set of attributes. Change these attribute values to modify the information
  21. // associated with an assembly.
  22. //
  23. [assembly: AssemblyTitle('')]
  24. [assembly: AssemblyDescription('')]
  25. [assembly: AssemblyConfiguration('')]
  26. [assembly: AssemblyCompany('')]
  27. [assembly: AssemblyProduct('')]
  28. [assembly: AssemblyCopyright('')]
  29. [assembly: AssemblyTrademark('')]
  30. [assembly: AssemblyCulture('')]
  31.  
  32. //
  33. // Version information for an assembly consists of the following four values:
  34. //
  35. //      Major Version
  36. //      Minor Version 
  37. //      Build Number
  38. //      Revision
  39. //
  40. // You can specify all the values or you can default the Revision and Build Numbers 
  41. // by using the '*' as shown below:
  42.  
  43. [assembly: AssemblyVersion('1.0.*')]
  44.  
  45. //
  46. // In order to sign your assembly you must specify a key to use. Refer to the 
  47. // Microsoft .NET Framework documentation for more information on assembly signing.
  48. //
  49. // Use the attributes below to control which key is used for signing. 
  50. //
  51. // Notes: 
  52. //   (*) If no key is specified, the assembly is not signed.
  53. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  54. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  55. //       a key.
  56. //   (*) If the KeyFile and the KeyName values are both specified, the 
  57. //       following processing occurs:
  58. //       (1) If the KeyName can be found in the CSP, that key is used.
  59. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  60. //           in the KeyFile is installed into the CSP and used.
  61. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  62. //       When specifying the KeyFile, the location of the KeyFile should be
  63. //       relative to the project output directory which is
  64. //       %Project Directory%\bin\<configuration>. For example, if your KeyFile is
  65. //       located in the project directory, you would specify the AssemblyKeyFile 
  66. //       attribute as [assembly: AssemblyKeyFile('..\\..\\mykey.snk')]
  67. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  68. //       documentation for more information on this.
  69. //
  70. [assembly: AssemblyDelaySign(false)]
  71. [assembly: AssemblyKeyFile('')]
  72. [assembly: AssemblyKeyName('')]
  73.  
  74. [STAThread]
  75. begin
  76.   Application.Run(TWinForm.Create);
  77. end.
  78.